翻訳と辞書
Words near each other
・ "O" Is for Outlaw
・ "O"-Jung.Ban.Hap.
・ "Ode-to-Napoleon" hexachord
・ "Oh Yeah!" Live
・ "Our Contemporary" regional art exhibition (Leningrad, 1975)
・ "P" Is for Peril
・ "Pimpernel" Smith
・ "Polish death camp" controversy
・ "Pro knigi" ("About books")
・ "Prosopa" Greek Television Awards
・ "Pussy Cats" Starring the Walkmen
・ "Q" Is for Quarry
・ "R" Is for Ricochet
・ "R" The King (2016 film)
・ "Rags" Ragland
・ ! (album)
・ ! (disambiguation)
・ !!
・ !!!
・ !!! (album)
・ !!Destroy-Oh-Boy!!
・ !Action Pact!
・ !Arriba! La Pachanga
・ !Hero
・ !Hero (album)
・ !Kung language
・ !Oka Tokat
・ !PAUS3
・ !T.O.O.H.!
・ !Women Art Revolution


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

File:Illusion movie.ogg : ウィキペディア英語版
File:Illusion movie.ogg

== Summary ==
To see the illusion, do this:
Play the movie (which lasts 1 minute) full screen and stare to the center of the image.
After the movie finishes, look away (for example look to a face or to your hands). For few seconds everything you see will appear to distort.
The original idea is not mine, I have seen on the net, BUT this animation file was created by me with this C program:

//License: Public Domain
//Written by Nasca Octavian PAUL, Tg. Mures, Romania
//in 20060901
/
*
Steps to obtain the illusion image:
1) Compile this program and run it
2) Convert the .pgm images to .png images with the bash script:
>>>>>cut<<<<<
for file in
*.pgm
do
echo $file
pnmtopng $file > "$file.png"
rm -f $file
done
>>>>>cut<<<<<
3) Convert png images to "output.avi"
mencoder "mf://
*.png" -mf fps=20:type=png -ovc lavc -oac copy -o output.avi
4) Convert "output.avi" to ogg theora with:
ffmpeg2theora output.avi
5) Run the animation (full screen) and look and stare in the center of it
After 1 minute, look away and you'll see a very interesting illusion (looks like objects/faces/etc changes their shapes) which last few seconds.
*/
#include
#include
static const int sizex=640;
static const int sizey=480;
static const float freq=80;
static unsigned char data();
static unsigned char f(float x,float y,float phase)
static void make_frame(float t)
}
static void save_frame(char
*filename)
int main(void)


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「File:Illusion movie.ogg」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.